home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 1997 November / PC-Welt 1197.iso / cserve / SERVICE.DXR / 00113.ls < prev    next >
Encoding:
Text File  |  1997-09-02  |  708 b   |  36 lines

  1. on enterFrame
  2.   if rollOver(33) then
  3.     puppetSprite(48, 1)
  4.     set the castNum of sprite 48 to the number of member "BUB_1"
  5.     updateStage()
  6.     exit
  7.   else
  8.     puppetSprite(48, 0)
  9.   end if
  10.   if rollOver(34) then
  11.     puppetSprite(48, 1)
  12.     set the castNum of sprite 48 to the number of member "BUB_2"
  13.     updateStage()
  14.     exit
  15.   else
  16.     puppetSprite(48, 0)
  17.   end if
  18.   if rollOver(35) then
  19.     puppetSprite(48, 1)
  20.     set the castNum of sprite 48 to the number of member "BUB_3"
  21.     updateStage()
  22.     exit
  23.   else
  24.     puppetSprite(48, 0)
  25.   end if
  26. end
  27.  
  28. on exitFrame
  29.   if the movieTime of sprite 13 < the stopTime of sprite 13 then
  30.     go(the frame)
  31.   else
  32.     mClose(13)
  33.     mUpdateQtStage()
  34.   end if
  35. end
  36.